home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / FNDPARAM.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  307 b   |  17 lines

  1. #include <string.h>
  2. #include <dos.h>
  3.  
  4. int FindParam(char *StrToFind)
  5. {
  6.   int SLen  = strlen(StrToFind);
  7.   int Count = 1;
  8.   int Found = 0;
  9.   while ((Count < _argc) && (!Found)) {
  10.     if (strnicmp(StrToFind,_argv[Count],SLen) == 0) {
  11.       Found = 1;
  12.     }
  13.     Count++;
  14.   }
  15.   return(Found);
  16. }
  17.